home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / writev.c < prev   
C/C++ Source or Header  |  1990-08-20  |  2KB  |  67 lines

  1. /* 
  2.  * writev.c --
  3.  *
  4.  *    Procedure to map from Unix writev system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/writev.c,v 1.2 90/08/20 17:18:43 kupfer Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "compatInt.h"
  17. #include <sys/types.h>
  18. #include <sys/uio.h>
  19.  
  20.  
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * writev --
  26.  *
  27.  *    Procedure to map from Unix writev system call to Sprite Fs_Write.
  28.  *
  29.  * Results:
  30.  *    UNIX_ERROR is returned upon error, with the actual error code
  31.  *    stored in errno.  Upon success, the number of bytes actually
  32.  *    written is returned.
  33.  *
  34.  * Side effects:
  35.  *    The data in the buffers is written to the file at the indicated offset.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. int
  41. writev(descriptor, iov, ioveclen)
  42.     int descriptor;        /* descriptor for stream to write */
  43.     register struct iovec *iov;    /* array of io vectors. */
  44.     int ioveclen;        /* number of iovec's in iov. */
  45. {
  46.     ReturnStatus status;    /* result returned by Fs_Write */
  47.     int amountWritten;        /* place to hold number of bytes written */
  48.     int totalWritten = 0;    /* place to hold total # of bytes written */
  49.     int i;
  50.  
  51.     for (i=0; i < ioveclen; i++, iov++) {
  52.     status = Fs_Write(descriptor, iov->iov_len, iov->iov_base, 
  53.                             &amountWritten);
  54.     if (status != SUCCESS) {
  55.         break;
  56.     } else {
  57.         totalWritten += amountWritten;
  58.     }
  59.     }
  60.     if (status != SUCCESS && totalWritten == 0) {
  61.     errno = Compat_MapCode(status);
  62.     return(UNIX_ERROR);
  63.     } else {
  64.     return(totalWritten);
  65.     }
  66. }
  67.